home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / source / sal100 / select.src < prev    next >
Encoding:
Text File  |  1993-06-03  |  175 b   |  11 lines

  1. void selection()
  2. {
  3.   int a;
  4.   int b;
  5.  
  6.   for (a = 0; a < ARRAYSIZE; a++)
  7.     for (b = a; b < ARRAYSIZE; b++)
  8.       if (Vekt[b] < Vekt[a])
  9.         SwapNumbers)a,b);
  10. }
  11.